@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.logo-image {
    width: 568px;
    height: 500px;
    margin-left: 125px;
    display: inline-block;
}

header {
    margin: 44px 0 144px 76px;

}
.link-header {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #9B9D9C;
    cursor: pointer;
    margin-right: 23px;
}
.button-header {
    background: #665AE1;
    border-radius: 20.5px;
    width: 130px;
    height: 41px;
    border: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    cursor: pointer;

}
section {
    display: inline-block;
    margin-left: 86px;
}
h1 {
    font-weight: 900;
    font-size: 100px;
    line-height: 122px;
    color: #515151;
}
h2 {
    font-weight: 500;
    font-size: 58px;
    line-height: 71px;
    color: #515151;
}
p {
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #848484;
    width: 515px;
    margin-top: 32px;
    margin-bottom: 65px;
}
.button-main {
    background: #ADFF00;
    border-radius: 30px;
    width: 239px;
    height: 64px;
    border: none;
    cursor: pointer;
    filter: drop-shadow(0px 4px 4px rgba( 0, 0, 0, 0.25));
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #000000;
}

@media screen and (max-width:800px) {
    header {
        display: none;
    }
    .logo-image {
       margin-top: 149px;
       margin-right: 22px;
       margin-left: 14px; 
        
    }
    p {
        display: none;
    }
    h1 {
        width: 263px;
        font-size: 50px;
        position: absolute;
        left: 169px;
       
    }
    h2 {
        font-size: 30px;
        width: 237px;
        position: absolute;
        left: 186px;
        top: 725px;
    }
    .button-main {
        width: 239px;
        height: 64px;
        flex-shrink: 0;
        position: absolute;
        top: 811px;
        left: 183px;
    }
    section {
        text-align: center;
    }
}

